home *** CD-ROM | disk | FTP | other *** search
/ NeXT Enterprise Objects Framework 1.1 / NeXT Enterprise Objects Framework 1.1.iso / NextDeveloper / Examples / EnterpriseObjects / Archiving / ArchivingObject / Author.h < prev    next >
Encoding:
Text File  |  1994-08-18  |  475 b   |  24 lines

  1. #import <eointerface/eointerface.h>
  2. #import <eoaccess/eoaccess.h>
  3. #import <foundation/NSArchiver.h>
  4.  
  5.  
  6. @interface Author:Object
  7. {
  8.     NSString *authorID;        // These descend from NSObject
  9.     NSString *firstname;
  10.     NSString *lastname;
  11.     NSString *address;
  12.     NSString *city;
  13.     NSString *state;
  14.     NSString *zip;
  15.     NSString *phone;
  16.     int contract;        // Scalar type  
  17. }
  18.  
  19.  
  20. - (NSString *)description;
  21. - read:(NXTypedStream *)stream;
  22. - write:(NXTypedStream *)stream;
  23. @end
  24.